Stored Procedures [dbo].[BAEImisProductGetAllByType]
Properties
PropertyValue
ANSI Nulls OnYes
Quoted Identifier OnYes
Parameters
NameData TypeMax Length (Bytes)
@ProductTypevarchar(10)10
SQL Script
create procedure [dbo].[BAEImisProductGetAllByType] @ProductType as
varchar(10)
AS
    SELECT * FROM Product
    WHERE PROD_TYPE = @ProductType

GO
Uses